home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
progsrc
/
ebksrc
/
pccursor.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1991-07-30
|
542b
|
31 lines
/*
pccursor.cpp
7-30-91
Cursor shape class for IBM PC text modes.
Copyright 1991
John W. Small
All rights reserved
Use freely but acknowledge authorship and copyright.
PSW / Power SoftWare
P.O. Box 10072
McLean, Virginia 22102 8072 USA
John Small
Voice : (703) 759-3838
CIS: 73757,2233
*/
#include <pccursor.hpp>
void CursorShape::putshape(unsigned shape)
{ /* Don't make inline to avoid optimizer induced errors! */
prevshape = getshape();
_CX = shape;
_AH = 0x01;
geninterrupt(0x10);
}